home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2008 February / PCWFEB08.iso / Software / Resources / Developers / XAMPP 1.5.4 / Windows installer / xampp-win32-1.5.4-installer.exe / xampp / contrib / ftp-mit-perl.pl < prev    next >
Encoding:
Text File  |  2006-04-18  |  268 b   |  8 lines

  1. use Net::FTP;
  2. print "Content-Type: text/html\n\n";
  3. $ftp = Net::FTP->new("localhost");    # Unser Host
  4. die "Konnte keine Verbindung aufbauen $!" unless $ftp;
  5. $ftp->login("newuser", "wampp");    # Hier Benutzername und Password eingeben            
  6. $ftp->get("index.php");
  7. $ftp->quit;
  8.